home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / bench / ds3100.md / RCS / ccMachStat.c,v < prev    next >
Encoding:
Text File  |  1989-08-01  |  899 b   |  76 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.07.31.17.54.12;  author douglis;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     89.07.26.23.20.45;  author douglis;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @port to the ds3100
  27. @
  28. text
  29. @
  30. /*
  31. ** The machine dependent statistics routines.
  32. */
  33. #include "sprite.h"
  34. #include "status.h"
  35. #include "fs.h"
  36. #include "fsCmd.h"
  37. #include "sysStats.h"
  38. #include "proc.h"
  39. #include "vm.h"
  40. #include "kernel/sched.h"
  41. #include "kernel/fsStat.h"
  42. #include "kernel/vm.h"
  43. #include "stdio.h"
  44. #include "ccMachStat.h"
  45.  
  46. ReturnStatus
  47. InitMachStats(stats)
  48. MachStats    *stats;
  49. {
  50.     return(SUCCESS);
  51. }
  52.  
  53. ReturnStatus
  54. GetMachStats(stats)
  55. MachStats    *stats;
  56. {
  57.     return(SUCCESS);
  58. }
  59.  
  60. PrintMachStats(startStats, endStats)
  61. MachStats       *startStats;
  62. MachStats       *endStats;
  63. {
  64. }
  65.  
  66. @
  67.  
  68.  
  69. 1.1
  70. log
  71. @Initial revision
  72. @
  73. text
  74. @d37 1
  75. @
  76.